home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Capcom E3 2004 Press CD ~…pcom Sales CD 2004 (USA)
/
Capcom E3 2004 Press CD (USA).bin
/
pc
/
files
/
oni3
/
dmenu_screen.swf
/
scripts
/
frame_2
/
DoAction.as
Wrap
Text File
|
2004-04-16
|
462b
|
18 lines
Movieclip.prototype.backUp = function(howManyFrames)
{
this.createEmptyMovieClip("revController",100);
this.revController.howMany = howManyFrames;
this.revController.onEnterFrame = function()
{
if(this._parent._currentframe > 1 and this.howMany > 0)
{
this._parent.gotoAndStop(this._parent._currentframe - 1);
this.howMany--;
}
else
{
this.removeMovieClip();
}
};
};